@builder6/sdk
v2.2.5
Published
This SDK is largely a wrapper over our [Content API](https://www.builder.io/c/docs/content-api)
Downloads
5
Keywords
Readme
Builder Core SDK
This SDK is largely a wrapper over our Content API
import { builder } from '@builder6/sdk';
builder.init(YOUR_KEY);
// Optional custom targeting
builder.setUserAttributes({
userIsLoggedIn: true,
whateverKey: 'whatever value',
});
builder
.get(YOUR_MODEL_NAME, {
// Optional custom query
query: {
'data.customField.$gt': 100,
},
})
.promise()
.then(({ data }) => {
// Do something with the data
});
// The options that you can send to builder.get and builder.getAll
// are defined here: https://forum.builder.io/t/what-are-the-options-for-the-methods-builder-get-and-builder-getall/1036
builder
.getAll(YOUR_MODEL_NAME, {
limit: 10,
})
.then(results => {
// Do something with the results
});
// Turn of cookies/tracking
builder.canTrack = false;
View all options for builder.get
here
Learn more about how to use the Builder core SDK: