Questions tagged [baqend]

Baqend is a serverless development platform for building incredibly fast and scalable web applications. Requests are automatically accelerated via Bloom filter-based algorithms that cache in both CDNs and browser caches. The API offers common enterprise features out-of-the-box, such as data storage, real-time queries, user management and access control.

Baqend is a serverless development platform for building incredibly fast and scalable web applications. Requests are automatically accelerated via Bloom filter-based algorithms that cache in both CDNs and browser caches. The API offers common enterprise features out-of-the-box, such as data storage, real-time queries, user management and access control.

33 questions
4
votes
2 answers

How do i add client side js libraries in Nuxt>

First time on nuxt. i am trying to add a client side library. In a normal html i will just add it to my index.html file. But i have no idea how do i do the same on nuxt. How do i add it? this is my config module.exports = { /* ** Headers of…
Rishav Sharan
  • 2,763
  • 8
  • 39
  • 55
4
votes
1 answer

How can I delete all data from multiple Baqend tables?

I need to delete all rows from multiple tables, programmatically (not in the dashboard). Is there an API for that? I couldn't find it in the documentation.
Sven D
  • 53
  • 6
2
votes
1 answer

Removing my own users ACL permisions

I have an app where multiple users are allowed to edit the data of an object, let's just say user A, B, and C. All with both Read and Write explicitly defined on the objects ACL. When I'm logged in as user A, I can remove access for user B and C...…
Chris Chong
  • 371
  • 1
  • 3
  • 17
2
votes
2 answers

Relationships and ACL in Baqend

I'm trying to figure out if this is possible with baqend, or even the correct approach to begin with. I have a bunch of users, using the default user account system that comes with Baqend. Some of these users will be administrators of a company. A…
Chris Chong
  • 371
  • 1
  • 3
  • 17
2
votes
1 answer

Where can I set up caching with the Baqend Community edition?

I've installed the community edition of Baqend for Linux. It works great, however, I didn't find any option to setup the caching in the Baqend CDN and the browser. Am I missing something? I would love to serve my static Angular 2 assets and my JSON…
1
vote
0 answers

Cannot open Speed Kit on Plesk

I purchased an extension and then I open in Plesk I get below error: CentOs 7, Plesk 17.5 Call to a member function getDomains() License.php Line 85 [2018-12-06 04:46:55.712] ERR [panel] Call to a member function getDomains() on null: 0:…
1
vote
2 answers

Baqend onUpdate Handler

Will doing partialupdate() cause code in a data class' onUpdate Handler to run? I have this setup in the data class: exports.onUpdate = function(db, obj) { DB.log.info(obj.ShiftID); db.Shifts.load(obj.ShiftID) .then((Shift) => { …
Chris Chong
  • 371
  • 1
  • 3
  • 17
1
vote
1 answer

Deep querying of data

Is it possible to do a "deep query" of data stored in Baqend? Something like this: db.Shifts.find() .where({ "applicants.applicants": { "$in": ["db/User/12"] }, }) applicants.applicants is a reference to a Set that is saved in a…
Chris Chong
  • 371
  • 1
  • 3
  • 17
1
vote
1 answer

Data objects that reference each other

Will it cause a problem if I have objects referencing each other? For example: Jobs - ACL = not writeable by public id: 10 jobname: 'Inside Sales Rep' applicants: /db/Applicants/123456 // a refernece, not a string Applicants - ACL =…
Chris Chong
  • 371
  • 1
  • 3
  • 17
1
vote
1 answer

Version control of data objects in Baqend

I see that data objects in the Baqend data storage are versioned. Are the previous versions accessible? Does the system store the ID of the user who wrote/updated the object? Just curious what that is doing and if I need to try to create my own…
Chris Chong
  • 371
  • 1
  • 3
  • 17
1
vote
1 answer

Query by id in React

Trying to figure out how to grab a single object from the database, I know its key, in ReactJS. import { db } from 'baqend'; componentWillMount() { db.Companies.load('16747fce-f0b1-422b-aa60-220c2dccac58') .then((response) => { …
Chris Chong
  • 371
  • 1
  • 3
  • 17
1
vote
1 answer

What is the correct syntax for saving a GeoPoint in Baqend?

What is the correct syntax for saving latitude and longitude in Baqend? I am successfully saving the normal fields (all of them are strings): handleSubmit(event) { event.preventDefault(); var newcompany = new db.Companies({ …
Chris Chong
  • 371
  • 1
  • 3
  • 17
1
vote
1 answer

BaQend - DBready at initializing, check login status of user

I'm working with BaQend & Ionic2 and try to get some task at App-start. 1. DBready I don't want to do this at every single page: ionViewCanEnter(): Promise { // Check if the Baqend SDK is ready and wait for initialization …
Bourbon
  • 603
  • 3
  • 8
  • 17
1
vote
1 answer

Chrome service worker not intercepting cached requests

I have this simple test website https://service-worker-test.app.baqend.com/ that displays 200 images next to eachother. It registers a very simple service worker. The HTML looks like this: