Skip to content

Commit acd48a8

Browse files
authored
Merge pull request #305 from FalkorDB/fix-flex-udf-nav
Fix flex udf nav - flex sub-categories
2 parents eb0d994 + 06498a5 commit acd48a8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+207
-123
lines changed

udfs/flex/bitwise/and.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: default
33
title: bitwise.and
4-
parent: FLEX Function Reference
5-
grand_parent: UDFs - User Defined Functions
4+
parent: Bitwise Functions
5+
grand_parent: FLEX Function Reference
66
---
77

88
# bitwise.and
@@ -63,4 +63,4 @@ RETURN d.id, lowerNibble
6363
## See Also
6464
- [bitwise.or](./or.md) - Bitwise OR operation
6565
- [bitwise.xor](./xor.md) - Bitwise XOR operation
66-
- [bitwise.not](./not.md) - Bitwise NOT operation
66+
- [bitwise.not](./not.md) - Bitwise NOT operation

udfs/flex/bitwise/index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: default
3+
title: Bitwise Functions
4+
parent: FLEX Function Reference
5+
grand_parent: UDFs - User Defined Functions
6+
has_children: true
7+
nav_order: 10
8+
---
9+
10+
# Bitwise Functions
11+
12+
FLEX bitwise utilities.

udfs/flex/bitwise/not.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: default
33
title: bitwise.not
4-
parent: FLEX Function Reference
5-
grand_parent: UDFs - User Defined Functions
4+
parent: Bitwise Functions
5+
grand_parent: FLEX Function Reference
66
---
77

88
# bitwise.not
@@ -76,4 +76,4 @@ restored
7676
## See Also
7777
- [bitwise.and](./and.md) - Bitwise AND operation
7878
- [bitwise.or](./or.md) - Bitwise OR operation
79-
- [bitwise.xor](./xor.md) - Bitwise XOR operation
79+
- [bitwise.xor](./xor.md) - Bitwise XOR operation

udfs/flex/bitwise/or.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: default
33
title: bitwise.or
4-
parent: FLEX Function Reference
5-
grand_parent: UDFs - User Defined Functions
4+
parent: Bitwise Functions
5+
grand_parent: FLEX Function Reference
66
---
77

88
# bitwise.or
@@ -69,4 +69,4 @@ SET u.permissions = flex.bitwise.or(u.permissions, 4) // Add execute permission
6969
## See Also
7070
- [bitwise.and](./and.md) - Bitwise AND operation
7171
- [bitwise.xor](./xor.md) - Bitwise XOR operation
72-
- [bitwise.not](./not.md) - Bitwise NOT operation
72+
- [bitwise.not](./not.md) - Bitwise NOT operation

udfs/flex/bitwise/shiftLeft.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: default
33
title: bitwise.shiftLeft
4-
parent: FLEX Function Reference
5-
grand_parent: UDFs - User Defined Functions
4+
parent: Bitwise Functions
5+
grand_parent: FLEX Function Reference
66
---
77

88
# bitwise.shiftLeft
@@ -81,4 +81,4 @@ mask
8181
## See Also
8282
- [bitwise.shiftRight](./shiftRight.md) - Shift bits to the right
8383
- [bitwise.and](./and.md) - Bitwise AND operation
84-
- [bitwise.or](./or.md) - Bitwise OR operation
84+
- [bitwise.or](./or.md) - Bitwise OR operation

udfs/flex/bitwise/shiftRight.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: default
33
title: bitwise.shiftRight
4-
parent: FLEX Function Reference
5-
grand_parent: UDFs - User Defined Functions
4+
parent: Bitwise Functions
5+
grand_parent: FLEX Function Reference
66
---
77

88
# bitwise.shiftRight
@@ -96,4 +96,4 @@ upperNibble
9696
## See Also
9797
- [bitwise.shiftLeft](./shiftLeft.md) - Shift bits to the left
9898
- [bitwise.and](./and.md) - Bitwise AND operation
99-
- [bitwise.or](./or.md) - Bitwise OR operation
99+
- [bitwise.or](./or.md) - Bitwise OR operation

udfs/flex/bitwise/xor.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: default
33
title: bitwise.xor
4-
parent: FLEX Function Reference
5-
grand_parent: UDFs - User Defined Functions
4+
parent: Bitwise Functions
5+
grand_parent: FLEX Function Reference
66
---
77

88
# bitwise.xor
@@ -79,4 +79,4 @@ decrypted
7979
## See Also
8080
- [bitwise.and](./and.md) - Bitwise AND operation
8181
- [bitwise.or](./or.md) - Bitwise OR operation
82-
- [bitwise.not](./not.md) - Bitwise NOT operation
82+
- [bitwise.not](./not.md) - Bitwise NOT operation

udfs/flex/collections/frequencies.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: default
33
title: coll.frequencies
4-
parent: FLEX Function Reference
5-
grand_parent: UDFs - User Defined Functions
4+
parent: Collection Functions
5+
grand_parent: FLEX Function Reference
66
---
77

88
# coll.frequencies
@@ -81,4 +81,4 @@ ORDER BY frequency DESC
8181

8282
## See Also
8383
- [coll.union](./union.md) - Get unique elements (keys would give unique items)
84-
- [coll.intersection](./intersection.md) - Find common elements
84+
- [coll.intersection](./intersection.md) - Find common elements

udfs/flex/collections/index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: default
3+
title: Collection Functions
4+
parent: FLEX Function Reference
5+
grand_parent: UDFs - User Defined Functions
6+
has_children: true
7+
nav_order: 20
8+
---
9+
10+
# Collection Functions
11+
12+
FLEX collections utilities.

udfs/flex/collections/intersection.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: default
33
title: coll.intersection
4-
parent: FLEX Function Reference
5-
grand_parent: UDFs - User Defined Functions
4+
parent: Collection Functions
5+
grand_parent: FLEX Function Reference
66
---
77

88
# coll.intersection
@@ -75,4 +75,4 @@ RETURN u.name, validPerms
7575

7676
## See Also
7777
- [coll.union](./union.md) - Combine all unique elements from both lists
78-
- [sim.jaccard](../similarity/jaccard.md) - Calculate similarity coefficient using intersection
78+
- [sim.jaccard](../similarity/jaccard.md) - Calculate similarity coefficient using intersection

0 commit comments

Comments
 (0)