FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. For more details, review the migration guide. Contact support@fauna.com with any questions. |
shell
Start an interactive query shell.
Description
Starts an interactive query shell for sending queries to Fauna. By default,
this command runs the FQL v10
. To run the shell for FQL v4, provide the
--version 4
option.
It is not possible to use this command to run queries in a parent or peer database. To access a database outside of the current database, use the Fauna Dashboard. |
Arguments
Argument | Description |
---|---|
DBNAME |
Optional - If supplied, the queries that you run are executed in the child database. |
Options
Option | Description |
---|---|
|
Optional file to read the query (or queries) from. |
|
Optional output format. Must be one of: - The default is |
|
Enable type checking. |
|
Optional Fauna server domain, that is, the hostname where
Fauna is running. Defaults to |
|
Optional name of the endpoint to use for the command. |
|
Optional connection port. Defaults to 8443. |
|
Optional connection scheme. Must be one of |
|
Optional secret to use. A secret authenticates your connection to Fauna, and connects you to a database. |
|
Optional connection timeout, an integer number of milliseconds.
When the interval has elapsed, The default is zero, which means that |
Example
$ fauna shell
Connected to https://db.fauna.com:443
Type Ctrl+D or .exit to exit the shell
> Collection.all()
{
data: [
{
name: "People",
coll: Collection,
ts: Time("2023-08-23T00:26:16.680Z"),
indexes: {
byEmail: {
terms: [
{
field: "email"
}
],
queryable: true,
status: "complete"
}
},
constraints: [
{
unique: [
"email"
],
status: "active"
}
]
}
]
}
>
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!