The Fauna service will be ending on May 30, 2025.

For more information on the service wind down, see our announcement and the Fauna Service End-of-Life FAQ.

Imports

Each Fauna driver requires an import stanza. For more detailed platform installation instructions, consult the README for your particular driver.

.NET/C#Copied!
using FaunaDB.Client;
using FaunaDB.Types;

using static FaunaDB.Query.Language;
goCopied!
import (
  "fmt"
  f "github.com/fauna/faunadb-go/v4/faunadb"
)
javaCopied!
import com.faunadb.client.FaunaClient;
import static com.faunadb.client.query.Language.*;
javascriptCopied!
var faunadb = require('faunadb')
var q = faunadb.query
pythonCopied!
from faunadb import query as q
from faunadb.objects import Ref
from faunadb.client import FaunaClient
\