@@ -1555,6 +1555,101 @@ The Unicode character `\u0085` is deprecated for unescaped identifiers and will
15551555====== 
15561556===== 
15571557
1558+ .Deprecated function namespace 
1559+ ===== 
1560+ [.include-with-GQLSTATUS-code] 
1561+ ====== 
1562+ Query::
1563+ +
1564+ [source,cypher]
1565+ ---- 
1566+ RETURN point.function() AS result 
1567+ ---- 
1568+ 
1569+ Returned GQLSTATUS code::
1570+ 01N00
1571+ 
1572+ Returned status description::
1573+ warn: feature deprecated.
1574+ The namespace used by the function `point.function` is deprecated.
1575+ ====== 
1576+ [.include-with-neo4j-code] 
1577+ ====== 
1578+ Query::
1579+ +
1580+ [source,cypher]
1581+ ---- 
1582+ RETURN point.function() AS result 
1583+ ---- 
1584+ Description of the returned code::
1585+ The namespace of the invoked function is deprecated. (point.function)
1586+ ====== 
1587+ ===== 
1588+ 
1589+ .Deprecated procedure namespace 
1590+ ===== 
1591+ [.include-with-GQLSTATUS-code] 
1592+ ====== 
1593+ Query::
1594+ +
1595+ [source,cypher]
1596+ ---- 
1597+ CALL point.procedure() AS result 
1598+ RETURN result 
1599+ ---- 
1600+ 
1601+ Returned GQLSTATUS code::
1602+ 01N00
1603+ 
1604+ Returned status description::
1605+ warn: feature deprecated.
1606+ The namespace used by the procedure `point.procedure` is deprecated.
1607+ ====== 
1608+ [.include-with-neo4j-code] 
1609+ ====== 
1610+ Query::
1611+ +
1612+ [source,cypher]
1613+ ---- 
1614+ CALL point.procedure() AS result 
1615+ RETURN result 
1616+ ---- 
1617+ Description of the returned code::
1618+ The namespace of the called procedure is deprecated. (point.procedure)
1619+ ====== 
1620+ ===== 
1621+ 
1622+ .Shadowing built-in function 
1623+ ===== 
1624+ [.include-with-GQLSTATUS-code] 
1625+ ====== 
1626+ Query::
1627+ +
1628+ [source,cypher]
1629+ ---- 
1630+ RETURN coll.flatten() AS result 
1631+ ---- 
1632+ 
1633+ Returned GQLSTATUS code::
1634+ 01N00
1635+ 
1636+ Returned status description::
1637+ warn: feature deprecated.
1638+ The namespace of the invoked function `coll.flatten` is deprecated and the function is shadowing an internal function.
1639+ ====== 
1640+ [.include-with-neo4j-code] 
1641+ ====== 
1642+ Query::
1643+ +
1644+ [source,cypher]
1645+ ---- 
1646+ RETURN coll.flatten() AS result 
1647+ ---- 
1648+ Description of the returned code::
1649+ The namespace of the invoked function is deprecated and the function is shadowing an internal function. (coll.flatten)
1650+ ====== 
1651+ ===== 
1652+ 
15581653[#_deprecated-feature-with-replacement]
15591654=== Feature deprecated with a replacement
15601655
0 commit comments