0.0.0-alpha.29 • Published 9 months ago

@gqlpt/adapter-anthropic v0.0.0-alpha.29

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

@gqlpt/adapter-anthropic

Installation

npm install gqlpt @gqlpt/adapter-anthropic

Usage

import { AdapterAnthropic } from "@gqlpt/adapter-anthropic";

import { GQLPTClient } from "gqlpt";

const typeDefs = /* GraphQL */ `
  type User {
    id: ID!
    name: String!
  }

  type Query {
    user(id: ID!): User
  }
`;

const client = new GQLPTClient({
  typeDefs,
  adapter: new AdapterAnthropic({
    apiKey: process.env.ANTHROPIC_API_KEY,
  }),
});

async function main() {
  await client.connect();

  const query = "Find users by id 1";

  const response = await client.generateQueryAndVariables(query);

  console.log(response);
  /*
    {
        query: 'query ($id: ID!) {\n  user(id: $id) {\n    id\n    name\n  }\n}',
        variables: { id: '1' }
    }
  */
}

main();

Docs

gqlpt.dev/docs/adapters/anthropic

License

MIT - Rocket Connect - https://github.com/rocket-connect

0.0.0-alpha.29

9 months ago

0.0.0-alpha.28

9 months ago

0.0.0-alpha.24

9 months ago

0.0.0-alpha.23

9 months ago

0.0.0-alpha.27

9 months ago

0.0.0-alpha.26

9 months ago

0.0.0-alpha.25

9 months ago

0.0.0-alpha.22

10 months ago

0.0.0-alpha.21

11 months ago

0.0.0-alpha.20

11 months ago

0.0.0-alpha.19

11 months ago

0.0.0-alpha.18

11 months ago

0.0.0-alpha.13

11 months ago

0.0.0-alpha.17

11 months ago

0.0.0-alpha.16

11 months ago

0.0.0-alpha.15

11 months ago

0.0.0-alpha.14

11 months ago

0.0.0-alpha.12

11 months ago

0.0.0-alpha.11

11 months ago