Socket
Socket
Sign inDemoInstall

@lotosbin/graphql-relay-connection

Package Overview
Dependencies
17
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @lotosbin/graphql-relay-connection

A GraphQL Relay connection with cursor based on id, not on number offset. Can be used for MongoDB.


Version published
Weekly downloads
2
Maintainers
1
Created
Weekly downloads
 

Readme

Source

graphql-relay-connection

Build Status Coverage Status npm version Dependency Status License

A GraphQL Relay connection with custom cursor functions. Can be used for MongoDB, Mongoose, plain objects, scalars, or any data formats.

Install

npm install --save graphql-relay-connection

Usage

mongooseConnection is predefined for you. For other usage, scroll down to Custom connection section below.

import {
  connectionDefinitions,
  connectionArgs,
} from 'graphql-relay';

import {mongooseConnection} from 'graphql-relay-connection';

const {
  connectionFromPromisedArray,
  cursorToDocument,
} = mongooseConnection;

const UserType = new GraphQLObjectType({
  name: 'User',
  fields: () => ({
    friends: {
      type: UserConnection,
      args: connectionArgs,
      resolve: (user, args) => {
        args.first = args.first || 10;
        const doc = cursorToDocument(args.after);
        const friends = User.find({
            isFriendWith: user._id,
            _id: {$gt: doc && doc._id},
          })
          .limit(args.first + 1) // add +1 for hasNextPage
          .exec()
        return connectionFromPromisedArray(friends, args);
      },
    },
  }),
});

const {
  connectionType: UserConnection,
} = connectionDefinitions({
  nodeType: UserType,
});

Custom connection

Simply provide { comparableToCursor, cursorToComparable, comparator } to defineConnection.

import defineConnection from 'graphql-relay-connection';
import {
  base64,
  unbase64,
} from './util';

const PREFIX = 'number:';

// Given a comparable value, return a string cursor.
function numberToCursor(num) {
  return base64(PREFIX + num);
}

// Given a string cursor,
// return a comparable value for the comparator function.
function cursorToNumber(cursor) {
  const num = parseInt(unbase64(cursor).substring(PREFIX.length), 10);
  return isNaN(num) ? null : num;
}

// Sort function for array.sort().
// Given two values, return an interger.
function compareNumbers(num1, num2) {
  return num1 - num2;
}

const {
  connectionFromArray,
  connectionFromPromisedArray,
} = defineConnection({
  comparableToCursor: numberToCursor,
  cursorToComparable: cursorToNumber,
  comparator: compareNumbers,
});

How mongoose connection is defined

import type {
  ConnectionCursor,
} from './connectionTypes';
import defineConnection from './defineConnection';
import {
  base64,
  unbase64,
  startsWith,
} from './util';


export type ID = string;

export type Document = {
  id: ID,
};


const PREFIX = 'mongoose:';


function documentToCursor(doc: Document): ConnectionCursor {
  return base64(PREFIX + doc.id);
}


function cursorToDocument(cursor: ConnectionCursor): ?Document {
  const unbased = unbase64(cursor);
  if (startsWith(unbased, PREFIX)) {
    const id = unbased.substring(PREFIX.length);
    if (id) return {id};
  }
  return null;
}


function compareDocuments(doc1: Document, doc2: Document): number {
  if (doc1.id < doc2.id) {
    return -1;
  }
  if (doc1.id > doc2.id) {
    return 1;
  }
  return 0;
}


const {
  connectionFromArray,
  connectionFromPromisedArray,
} = defineConnection({
  comparableToCursor: documentToCursor,
  cursorToComparable: cursorToDocument,
  comparator: compareDocuments,
});


export {
  compareDocuments,
  connectionFromArray,
  connectionFromPromisedArray,
  cursorToDocument,
  documentToCursor,
};

License

The MIT License (MIT)

Copyright (c) 2016 Joon Ho Cho

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Keywords

FAQs

Last updated on 20 Jan 2018

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc