Skip to content

Commit 54066db

Browse files
Updated suggestion and warning
1 parent 0a90181 commit 54066db

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

modules/ROOT/pages/notifications/all-notifications.adoc

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1572,6 +1572,10 @@ Returned GQLSTATUS code::
15721572
Returned status description::
15731573
warn: feature deprecated.
15741574
The namespace used by the user-defined function `point.function` is deprecated.
1575+
1576+
Suggestions for improvement::
1577+
Change the namespace to a non-deprecated namespace e.g. `my.point.function` or `pointing.function`.
1578+
15751579
======
15761580
[.include-with-neo4j-code]
15771581
======
@@ -1582,7 +1586,7 @@ Query::
15821586
RETURN point.function() AS result
15831587
----
15841588
Description of the returned code::
1585-
The namespace of the invoked function is deprecated. (point.function)
1589+
The namespace of the invoked user-defined function is deprecated. (point.function)
15861590
======
15871591
=====
15881592

@@ -1603,7 +1607,11 @@ Returned GQLSTATUS code::
16031607

16041608
Returned status description::
16051609
warn: feature deprecated.
1606-
The namespace used by the procedure `point.procedure` is deprecated.
1610+
The namespace used by the user-defined procedure `point.procedure` is deprecated.
1611+
1612+
Suggestions for improvement::
1613+
Change the namespace to a non-deprecated namespace e.g. `my.point.procedure` or `pointing.procedure`.
1614+
16071615
======
16081616
[.include-with-neo4j-code]
16091617
======
@@ -1615,7 +1623,7 @@ CALL point.procedure() AS result
16151623
RETURN result
16161624
----
16171625
Description of the returned code::
1618-
The namespace of the called procedure is deprecated. (point.procedure)
1626+
The namespace of the called user-defined procedure is deprecated. (point.procedure)
16191627
======
16201628
=====
16211629

@@ -1635,7 +1643,11 @@ Returned GQLSTATUS code::
16351643

16361644
Returned status description::
16371645
warn: feature deprecated.
1638-
The namespace of the invoked function `coll.flatten` is deprecated and the function is shadowing an internal function.
1646+
The namespace of the invoked user-defined function `coll.flatten` is deprecated and the function is shadowing an internal function.
1647+
1648+
Suggestions for improvement::
1649+
Change the namespace to a non-deprecated namespace e.g. `my.coll.flatten` or `collection.flatten`.
1650+
16391651
======
16401652
[.include-with-neo4j-code]
16411653
======
@@ -1646,7 +1658,7 @@ Query::
16461658
RETURN coll.flatten() AS result
16471659
----
16481660
Description of the returned code::
1649-
The namespace of the invoked function is deprecated and the function is shadowing an internal function. (coll.flatten)
1661+
The namespace of the invoked user-defined function is deprecated and the function is shadowing an internal function. (coll.flatten)
16501662
======
16511663
=====
16521664

0 commit comments

Comments
 (0)