schema.js (134 lines of code) (raw):

/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import { GraphQLObjectType, GraphQLSchema, GraphQLString, GraphQLNonNull, GraphQLBoolean, } from 'graphql'; import { createAccount, addAddress, compileContract, deployContract, executeContract } from './cli-functions.js'; const RootQuery = new GraphQLObjectType({ name: 'Query', fields: { _empty: { type: GraphQLString, resolve() { return 'This is a placeholder query.'; }, }, }, }); const DeployContractOutput = new GraphQLObjectType({ name: 'DeployContractOutput', fields: { ownerAddress: { type: GraphQLString }, contractAddress: { type: GraphQLString }, contractName: { type: GraphQLString }, }, }); const RootMutation = new GraphQLObjectType({ name: 'Mutation', fields: { createAccount: { type: GraphQLString, args: { config: { type: new GraphQLNonNull(GraphQLString) }, type: { type: GraphQLString }, }, async resolve(parent, args) { try { const result = await createAccount(args.config, args.type); return result; } catch (error) { throw new Error(error); } }, }, addAddress: { type: GraphQLString, args: { config: { type: new GraphQLNonNull(GraphQLString) }, address: { type: new GraphQLNonNull(GraphQLString) }, type: { type: GraphQLString }, }, async resolve(parent, args) { try { const result = await addAddress(args.config, args.address, args.type); return result; } catch (error) { throw new Error(error); } }, }, compileContract: { type: GraphQLString, args: { source: { type: new GraphQLNonNull(GraphQLString) }, type: { type: GraphQLString }, }, async resolve(parent, args) { try { const result = await compileContract(args.source, args.type); return result; } catch (error) { throw new Error(error); } }, }, deployContract: { type: DeployContractOutput, args: { config: { type: new GraphQLNonNull(GraphQLString) }, contract: { type: new GraphQLNonNull(GraphQLString) }, name: { type: new GraphQLNonNull(GraphQLString) }, arguments: { type: new GraphQLNonNull(GraphQLString) }, owner: { type: new GraphQLNonNull(GraphQLString) }, type: { type: GraphQLString }, }, async resolve(parent, args) { try { const result = await deployContract( args.config, args.contract, args.name, args.arguments, args.owner, args.type ); return result; } catch (error) { throw new Error(error); } }, }, executeContract: { type: GraphQLString, args: { config: { type: new GraphQLNonNull(GraphQLString) }, sender: { type: new GraphQLNonNull(GraphQLString) }, contract: { type: new GraphQLNonNull(GraphQLString) }, functionName: { type: new GraphQLNonNull(GraphQLString) }, arguments: { type: new GraphQLNonNull(GraphQLString) }, type: { type: GraphQLString }, }, async resolve(parent, args) { try { const result = await executeContract( args.config, args.sender, args.contract, args.functionName, args.arguments, args.type ); return result; } catch (error) { throw new Error(error); } }, }, }, }); export default new GraphQLSchema({ query: RootQuery, mutation: RootMutation, });