Questions tagged [faunadb]

For questions related to FaunaDB, a strongly consistent multi-model database capable of global horizontal scale with a focus on operational simplicity.

FaunaDB is a strongly consistent database capable of global horizontal scale with a focus on operational simplicity. FaunaDB supports document, relational, graph, and temporal data sets from a single query. In addition to its own FQL query language, the product supports GraphQL, with SQL planned for the future.

Fauna Cloud was opened to the public on March 15, 2017.

Links

250 questions
0
votes
0 answers

Mutate a list of object in FaunaDB

I have my GraphQL schema imported in FaunaDB and want to create a new question type Choices { key: String! value: String! question: Question } type Question { title: String! snippet: String choices: [Choices!]! @relation answer:…
user8115310
0
votes
1 answer

How can I get a change history of faunaDB document?

FaunaDB's At() function looks so nice! I wonder if I can log a time series of sensor data into one document, and draw a time series chart by At() function and change history of the document. So, is there any way to get a change history of FaunaDB's…
Ueda Takeyuki
  • 721
  • 10
  • 26
0
votes
1 answer

Why my search for faunaDB can't get any item?

I'm stacking in searching faunaDB document by index. Please tell me what is wrong with my steps. I have a document that has a value of externalID as "GBXzbXya". I've created a index named label_search_by_externalID which has term as…
Ueda Takeyuki
  • 721
  • 10
  • 26
0
votes
1 answer

does serverless databases like faunadb support role based auth?

i'm new to serverless architecture in general, and i'm studying migrating my current php/mysql rest api to serverless arch. my main concern is access control. in certain app, i allow users to access content based on role, and groups they are…
Zalaboza
  • 8,899
  • 16
  • 77
  • 142
0
votes
1 answer

FaunaDB crud events / triggers

I'm evaluating FaunaDB as a replacement for DynamoDB. Is there such thing as database triggers for this database? I cannot find any reference relative to that. For example, upon document insertion or update, can we trigger a specific function, for…
Gilles Major
  • 135
  • 5
0
votes
1 answer

How to create index unique for multiple fields in GraphQL FaunaDB

I'm trying to create a TypeDef with two fields unique restriction. I know it's possible to do it in the interface of faunaDB Console as you can see in this image, but I want to do it using a schema. My current (not working) code, thats only assigns…
Lenik
  • 63
  • 5
-1
votes
1 answer

Is it possible to do an call for all the data in FaunaDB?

I am working with the demo of fauna. I Want to have the customer in the object, but now it is @refI work with NextJS. This is my object now. How can I get my customer info straight into my object?
-1
votes
4 answers

Is there any database model having these "no-sql", "schema free" & "relational" ? is it support c++?

I need schema free db with relational features for my C++ application. I already using PostgreSQL and Mysql in my project. I want to store data relationally in document and need CRUD using SQL.
-1
votes
2 answers

FaunaDB as redis/ssdb replacement?

We did hear about FaunaDB product on one of a recent meetup :) by Maciej Winnicki from Serverless. Presentation We take it into consideration. Could FaunaDB be a replacement of the SSDB that we are currently using (as a replacement of Redis)?…
sirkubax
  • 885
  • 2
  • 10
  • 19
-3
votes
1 answer

How to access an existing faunadb database using python in pycharm

I am unable to access an existing database of faunadb using python in the pycharm editor. I have secret key, collection and indexes as inputs. I wrote a simple code using python to access the database using the three credentials.
1 2 3
16
17