UNPKG
ichigoo
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Static site generator with React and GraphQL
github.com/renettarenula/ichigoo
renettarenula/ichigoo
ichigoo
/
lib
/
graphql
/
relationships.js
12 lines
(9 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
isRelationshipField
=
void
0
;
var
isRelationshipField =
function
isRelationshipField
(
fieldName
) {
return
fieldName.
endsWith
(
'_id'
); };
exports
.
isRelationshipField
= isRelationshipField;