joyent-portal/legacy/cloudapi-graphql/src/schema/types/key.js

17 lines
286 B
JavaScript

const { GraphQLString, GraphQLObjectType } = require('graphql');
module.exports = new GraphQLObjectType({
name: 'KeyType',
fields: {
name: {
type: GraphQLString
},
fingerprint: {
type: GraphQLString
},
key: {
type: GraphQLString
}
}
});