Functions
Functions( [database] )
Functions( [database] )
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.
curl https://db.fauna.com/ \
-u fnAChGwBcAACAO70ziE0cfROosNJHdgBmJU1PgpL: \
-d '{ "paginate": { "functions": null } }'
client.Query(Paginate(Functions()));
System.out.println(client.query(Paginate(Functions())).get());
result, _ := client.Query(f.Paginate(f.Functions()))
fmt.Println(result)
client.query(Paginate(Functions()))
client.query(q.paginate(q.functions()))
$client.query do
paginate functions
end
client.query(Paginate(Functions()))
client.query(q.Paginate(q.Functions()))
.then((ret) => console.log(ret))
HTTP/1.1 200 OK
{ "resource": [{ "@ref": "functions/increment" }] }
[{ "@ref": "functions/increment" }]
[ref(id = "increment", collection = ref(id = "functions"))]
[{increment 0xc4202dd9a0 <nil>}]
[{ "@ref": "functions/increment" }]
[{ "@ref": "functions/increment" }]
[{ "@ref": "functions/increment" }]
[{ "@ref": "functions/increment" }]
[Ref(id=increment, collection=Ref(id=functions))]
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
documentation@fauna.com
Thank you for your feedback!