Questions tagged [backand]

Backand is a backend-as-a-service for AngularJS that provides social login, push notifications, and Ionic integration.

Backand is a Backend-as-a-Service provider focused on AngularJS Applications built on top of relational databases. Backand provides all of the features necessary for a fully functional, secure, and scalable web app, including user and role-based security, automated RESTful-based APIs, custom action triggers, portable Amazon RDS database instances, social media integration, and extensive support for server-side JavaScript code..

Details:

Backand is a Backend-as-a-Service for AngularJS applications. Starting from either an existing database or a schema specification, Backand quickly generates a RESTful API that can be hit from any application using JSON web requests. Backand also provides a library for AngularJS, allowing you to quickly tie Backand's RESTful API to your application's data services, giving you instant database backing. In addition to object management, Backand provides you with a number of features crucial to web-based applications. These includes:

  • User and Role-based Security
  • Dedicated Hosting
  • Custom server-side actions
  • Transaction-level database-triggered actions
  • Integration with Ionic for cross-platform apps
  • Server-side JavaScript execution, allowing for safe and secure third-party integration
  • A portable database, allowing you to quickly change providers
  • Real-time database communication, and web sockets
  • Scalability, both in terms of performance and data management.

To get started, sign up at Backand.com and register your application! The application dashboard contains extensive documentation on every feature available to your app. Backand also maintains an active GitHub page at https://www.github.com/backand, where you can find several tutorials and examples of how to leverage Backand as a tool to accelerate your app's development.

Links:

143 questions
1
vote
1 answer

Backand: updating registered user email and name

What is the best method for updating a registered user's email and/or names in Backand? How can I make sure that if I'm changing the email address that I'm not also disconnecting the registered user from their object in the users table (since the…
CourtneyR
  • 93
  • 8
1
vote
1 answer

Backand - No 'Access-Control-Allow-Origin' header

I'm trying to register a new user using: Backand.signup(firstName, lastName, username, password, password2); but I end up getting: XMLHttpRequest cannot load https://api.backand.com/1/user/signup. No 'Access-Control-Allow-Origin' header is present…
cs_pupil
  • 2,782
  • 27
  • 39
1
vote
1 answer

Multitenancy in backand

I've already implemented multi tenancy in Parse, by (1) creating tenant-specific roles (each time a new tenant is created) and (2) assigning them to the ACLs of the objects/records/rows related to the tenant on any given table. I wonder if it is the…
marco alves
  • 1,707
  • 2
  • 18
  • 28
1
vote
1 answer

Sharing objects between users with Backand

Im using Backand BaaS, with my Ionic application. I want to implement functionality to share objects between users. Preferably also include ways to set permissions on said objects. Any references or guides to this would be appreciated.
Vince
  • 691
  • 1
  • 8
  • 18
1
vote
1 answer

How to retrieve the currently logged in user with Backand

I am using the Backand BaaS for my Ionic app. I am trying to retrieve the currently logged in user. At the moment I am setting a $rootScope variable upon the login event with the signed in user. Is there an easier way to do this process without…
Vince
  • 691
  • 1
  • 8
  • 18
1
vote
1 answer

Why can not I insert in the base text in Cyrillic on Backand servise?

When connecting through the MySQL client work insert and get value. But through the API inserted question marks.
1
vote
1 answer

How to implement pagination in custom query in backand

I want to implement pagination in my custom query like it is done in the provided queries. I want to provide the number of rows and the page. I tried the following but it seems that this is not possible: SET @start = ('{{rows}}' *…
user1127860
  • 150
  • 2
  • 14
1
vote
2 answers

Polygon object support in Backand with an external MySQL

I saw a blog post that announced recent filtering support directly through Backand for MySQL points. However, my existing mysql database makes use of the Polygon types as I need to define areas that are more than circular. At the moment, the Backand…
Alan
  • 1,510
  • 1
  • 18
  • 35
1
vote
2 answers

Backand user object not associated with custom user object if created through API

I have created a custom "users" object that I know is associated with backand's user object. However when I created them from my app using Backand's SDK, I can see the user being created in the Backand's registered users but not in my custom object…
Vaibhav
  • 25
  • 3
1
vote
1 answer

Configure Security to allow update of entries only for some users but allow read for all in Backand

Is it possible to configure the security of a table that only some users (the owners) of an entry in a database table are allowed to modify the entry? For example in a notes ap each note is assigned to a list of users who own this note. All users…
user1127860
  • 150
  • 2
  • 14
1
vote
1 answer

Signing into Backand Using BackAnd SDK

Attempting to sign in (and enter a session) using user credentials in an Angular app using the Backand SDK. From the Backand docs I am attempting to sign in using the Backand.signin() method (from my local) which looks to be initially sending an…
andysterks
  • 51
  • 7
1
vote
1 answer

How to make foreign key required?

For the model example given in the documentation, I noticed that you can create a pet object without requiring a owner. How do I specify in the JSON that owner is required? I see the Required switch from the Fields tab, but the switch doesn't move…
Sam
  • 1,288
  • 1
  • 13
  • 22
1
vote
1 answer

When retrieving the list of "master" objects, Backand Fails to retrieve "slave" objects

When retrieving the list of "master" objects, Backand Fails to retrieve "slave" objects app springnutjs When retrieving the list of "master" objects (the ones with the "collection, via" field), Backand Fails to retrieve "slave" (the ones with the…
1
vote
1 answer

Change Backand field type from string to float producing a valid model produces error in new schema

Warning The Model is valid. Changes made to the model include changes to fields types. Those changes may result in a loss or corruption of data. Click Ok to proceed field: vIdAux, kind: field type conflict, newType: float, oldType: string, relation:…
1
vote
1 answer

Backand: How to only listen and emit realtime changes on a specific item?

in the doc it's written that you can sends event to all connected users by using the following server side code for an update event function backandCallback(userInput, dbRow, parameters, userProfile) { socket.emitAll("items_updated",…
lanlau
  • 116
  • 7