Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@xata.io/client

Package Overview
Dependencies
Maintainers
3
Versions
4351
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xata.io/client

Xata.io SDK for TypeScript and JavaScript

  • 0.0.0-alpha.v82d5185
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
21K
decreased by-14.32%
Maintainers
3
Weekly downloads
 
Created
Source

Xata SDK for TypeScript and JavaScript

The Xata SDK supports typescript definitions for your Xata database schema. It also works with JavaScript.

It has zero dependencies and runs in Node.js, V8, Deno and Bun.

Installation

See our docs to get started using the Xata SDK.

Table of Contents

Manual Installation

npm install @xata.io/client

Usage

There are three ways to use the SDK:

  • Schema-generated Client: SDK to create/read/update/delete records in a given database following a schema file (with type-safety).
  • Schema-less Client: SDK to create/read/update/delete records in any database without schema validation (with partial type-safety).
  • API Client: SDK to interact with the whole Xata API and all its endpoints.

Schema-generated Client

To use the schema-generated client, you need to run the code generator utility that comes with our CLI.

To run it (and assuming you have configured the project with xata init):

xata codegen

In a TypeScript file, start using the generated code like this:

import { XataClient } from './xata'; // or wherever you chose to generate the client

const xata = new XataClient();

The import above will differ if you chose to generate the code in a different location.

The XataClient constructor accepts an object with configuration options, like the fetch parameter, which is required only if your runtime doesn't provide a global fetch function. There's also a databaseURL argument that by default will contain a URL pointing to your database (e.g. https://myworkspace-123abc.xata.sh/db/databasename). It can be specified in the constructor to overwrite that value if for whatever reason you need to connect to a different workspace or database.

The code generator will create two TypeScript types for each schema entity. The base one will be an Identifiable entity with the internal properties your entity has and the Record one will extend it with a set of operations (update, delete, etc...) and some schema metadata (xata version).

interface User extends Identifiable {
  email?: string | null;
}

type UserRecord = User & XataRecord;

async function initializeDatabase(admin: User): Promise<UserRecord> {
  return xata.db.users.create(admin);
}

const admin = await initializeDatabase({ email: 'admin@example.com' });
await admin.update({ email: 'admin@foo.bar' });
await admin.delete();

You will learn more about the available operations below, under the API Design section.

Schema-less Client

If you don't have a schema file, or you are building a generic way to interact with Xata, you can use the BaseClient class without schema validation.

import { BaseClient } from '@xata.io/client';

const xata = new BaseClient({
  branch: 'branchname',
  apiKey: 'xau_1234abcdef',
  fetch: fetchImplementation // Required if your runtime doesn't provide a global `fetch` function.
});

It works the same way as the code-generated XataClient but doesn't provide type-safety for your model.

You can read more on the methods available below, in the next section.

API Design

The Xata SDK to create/read/update/delete records follows the repository pattern. Each table will have a repository object available at xata.db.[table-name].

For example if you have a users table, there'll be a repository at xata.db.users. If you're using the schema-less client, you can also use the xata.db.[table-name] syntax to access the repository but without TypeScript auto-completion.

Creating Records

Invoke the create() method in the repository. Example:

const user = await xata.db.users.create({
  fullName: 'John Smith'
});

If you want to create a record with a specific ID, you can provide the id as parameter to the create() method.

const user = await xata.db.users.create('user_admin', {
  fullName: 'John Smith'
});

And if you want to create or update a record with a specific ID, you can invoke createOrUpdate() with an id parameter.

const user = await xata.db.users.createOrUpdate('user_admin', {
  fullName: 'John Smith'
});
Query a Single Record by its ID
// `user` will be null if the record cannot be found
const user = await xata.db.users.read('rec_1234abcdef');
Querying Multiple Records
// Query records selecting all fields.
const page = await xata.db.users.select().getPaginated();
const user = await xata.db.users.select().getFirst();

// You can also use `xata.db.users` directly, since it's an immutable Query too!
const page = await xata.db.users.getPaginated();
const user = await xata.db.users.getFirst();

// Query records selecting just one or more fields
const page = await xata.db.users.select('email', 'profile').getPaginated();

// Apply constraints
const page = await xata.db.users.filter('email', 'foo@example.com').getPaginated();

// Sorting
const page = await xata.db.users.sort('full_name', 'asc').getPaginated();

Query operations (select(), filter(), sort()) return a Query object. These objects are immutable. You can add additional constraints, sort, etc. by calling their methods, and a new query will be returned. In order to finally make a query to the database you'll invoke getPaginated(), getMany(), getAll(), or getFirst().

To learn the differences between these methods, see the reference.

// Operators that combine multiple conditions can be deconstructed
const { filter, any, all, not, sort } = xata.db.users;
const query = filter('email', 'foo@example.com');

// Single-column operators are imported directly from the package
import { gt, includes, startsWith } from '@xata.io/client';
filter('email', startsWith('username')).not(filter('created_at', gt(somePastDate)));

// Queries are immutable objects. This is useful to derive queries from other queries
const admins = filter('admin', true);
const spaniardsAdmins = admins.filter('country', 'Spain');
await admins.getAll(); // still returns all admins

// Finally fetch the results of the query
const users = await query.getAll();
const firstUser = await query.getFirst();

The getPaginated() method will return a Page object. It's a wrapper that internally uses cursor based pagination.

page.records; // Array of records
page.hasNextPage(); // Boolean

const nextPage = await page.nextPage(); // Page object
const previousPage = await page.previousPage(); // Page object
const startPage = await page.startPage(); // Page object
const endPage = await page.endPage(); // Page object

If you want to use an iterator, both the Repository and the Query classes implement an AsyncIterable. Alternatively you can use getIterator() and customize the batch size of the iterator:

for await (const record of xata.db.users) {
  console.log(record);
}

for await (const record of xata.db.users.filter('team.id', teamId)) {
  console.log(record);
}

for await (const records of xata.db.users.getIterator({ batchSize: 100 })) {
  console.log(records);
}
Updating Records

Updating a record leaves the existing object unchanged, but returns a new object with the updated values.

// Using an existing object
const updatedUser = await user.update({
  fullName: 'John Smith Jr.'
});

// Using a record id
const updatedUser = await xata.db.users.update('rec_1234abcdef', {
  fullName: 'John Smith Jr.'
});
Deleting Records
// Using an existing object
await user.delete();

// Using a record id
await xata.db.users.delete('rec_1234abcdef');

API Client

One of the main features of the SDK is the ability to interact with the whole Xata API and perform administrative operations such as creating/reading/updating/deleting workspaces, databases, tables, branches...

To communicate with the SDK we provide a constructor called XataApiClient that accepts an API token and an optional fetch implementation method.

const api = new XataApiClient({ apiKey: process.env.XATA_API_KEY });

Once you have initialized the API client, the operations are organized following the same hiearchy as in the official documentation. You have different namespaces for each entity (ie. workspaces, databases, tables, branches, users, records...).

const { id: workspace } = await api.workspaces.createWorkspace({ name: 'example' });
const { databaseName } = await api.database.createDatabase(workspace, 'database', { region: 'eu-west-1' });

await api.branches.createBranch(workspace, databaseName, 'branch');
await api.tables.createTable(workspace, databaseName, 'branch', 'table');
await api.tables.setTableSchema(workspace, databaseName, 'branch', 'table', {
  columns: [{ name: 'email', type: 'string' }]
});

const { id: recordId } = await api.records.insertRecord(workspace, databaseName, 'branch', 'table', {
  email: 'example@foo.bar'
});

const record = await api.records.getRecord(workspace, databaseName, 'branch', 'table', recordId);

await api.workspaces.deleteWorkspace(workspace);

Deno support

We publish the client on deno.land. You can use it by changing the import in the auto-generated xata.ts file:

import { buildClient, BaseClientOptions, XataRecord } from 'https://deno.land/x/xata/mod.ts';

FAQs

Package last updated on 24 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc