25 lines
688 B
JavaScript
25 lines
688 B
JavaScript
|
|
"use strict";
|
||
|
|
/*Powered By: Manaknightdigital Inc. https://manaknightdigital.com/ Year: 2021*/
|
||
|
|
/**
|
||
|
|
* profile Resolve Single
|
||
|
|
* @copyright 2021 Manaknightdigital Inc.
|
||
|
|
* @link https://manaknightdigital.com
|
||
|
|
* @license Proprietary Software licensing
|
||
|
|
* @author Ryan Wong
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
const { ApolloError } = require('apollo-server-express');
|
||
|
|
const graphqlFields = require('graphql-fields');
|
||
|
|
|
||
|
|
module.exports = async (_, {id}, {db}, info) => {
|
||
|
|
try {
|
||
|
|
const attributes = db.profile.intersection(graphqlFields(info));
|
||
|
|
|
||
|
|
return await db.profile.getByPK(id);
|
||
|
|
} catch (error) {
|
||
|
|
console.log('single_profile -> error', error);
|
||
|
|
return new ApolloError('InternalServerError');
|
||
|
|
}
|
||
|
|
};
|