Functions
Functions( [database] )
Functions( [database] )
Functions( [database] )
Functions( [database] )
functions( [database] )
Functions( [database] )
Description
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
Optional - A reference to a child database. If not specified, the current database is used. |
Returns
A Set reference for the available user-defined
functions in the specified child database
(or the current database if
database
is not specified).
Examples
The query below gets the references to all user-defined functions in the current database.
client.Query(Paginate(Functions()));
[{ "@ref": "functions/increment" }]
curl https://db.fauna.com/ \
-u fnAChGwBcAACAO70ziE0cfROosNJHdgBmJU1PgpL: \
-d '{ "paginate": { "functions": null } }'
HTTP/1.1 200 OK
{ "resource": [{ "@ref": "functions/increment" }] }
result, _ := client.Query(f.Paginate(f.Functions()))
fmt.Println(result)
[{increment 0xc4202dd9a0 <nil>}]
System.out.println(client.query(Paginate(Functions())).get());
[ref(id = "increment", collection = ref(id = "functions"))]
client.query(q.Paginate(q.Functions()))
.then((ret) => console.log(ret))
[Ref(id=increment, collection=Ref(id=functions))]
client.query(q.paginate(q.functions()))
[{ "@ref": "functions/increment" }]
client.query(Paginate(Functions()))
[{ "@ref": "functions/increment" }]
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!