Discussion:
[arangodb-google] Coding AQL functions in VueJS
Ludwig
2018-05-31 18:52:05 UTC
Permalink
Hello,

How can we fetch a json AQL response from Foxx API ?

What is the most direct way to code CRUD AQL functions within Vuejs ?

Which middleware or boilerplate, what syntax ?

<script>
import { db } from './FOXX';

export default {
name: 'app',
data() {
return {
ITEMS: [] }
},
FOXX_API() {
return {
ITEMS: db.collection('ITEMS'),
}
},


methods: {
UPDATE: function() {
this.$db.items.update(
{... [AQL function]


...
--
You received this message because you are subscribed to the Google Groups "ArangoDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email to arangodb+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Loading...