@builder.io/sdk

Image for: @builder.io/sdk
6.0.9 • Public • Published

Builder Core SDK

This SDK is largely a wrapper over our Content API

import { builder } from '@builder.io/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:

Readme

Image for: Readme

Keywords

none

Package Sidebar

Image for: Package Sidebar

Install

npm i @builder.io/sdk

Weekly Downloads

96,284

Version

6.0.9

License

MIT

Unpacked Size

1.81 MB

Total Files

106

Last publish

Collaborators