Discussion:
[arangodb-google] Fetching an AQL response in VueJS
Ludwig
2018-05-28 15:51:15 UTC
Permalink
Hello,

How can we fetch a json AQL response from Foxx API ? What is the best way
to code CRUD AQL functions within Vuejs ?

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

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


methods: {
UPDATE: function() {
this.$FOXX.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...