all files / semantic-graphql/src/graphql/ getGraphqlPolymorphicObjectType.js

80% Statements 4/5
100% Branches 0/0
0% Functions 0/1
80% Lines 4/5
1 2 3 4 5 6 7 8 9 10            
const { rdfsResource } = require('../constants');
const getGraphqlInterfaceType = require('./getGraphqlInterfaceType');
 
function getGraphqlPolymorphicObjectType(g/*, ranges*/) {
  // TODO
  return getGraphqlInterfaceType(g, rdfsResource);
}
 
module.exports = getGraphqlPolymorphicObjectType;