grapher/lib/query/testing/bootstrap/security/fixtures.js

10 lines
No EOL
212 B
JavaScript

import { Items, SubItems } from './collection';
Items.remove({});
SubItems.remove({});
const itemsId = Items.insert({text: 'hello'});
Items.getLink(itemsId, 'subitems').add({
text: 'hello from subitem'
});