(fieldName: string)
| 412 | * @returns {string} the root name of the field |
| 413 | */ |
| 414 | const getRootFieldName = (fieldName: string): string => { |
| 415 | return fieldName.split('.')[0]; |
| 416 | }; |
| 417 | |
| 418 | const relationSchema = { |
| 419 | fields: { relatedId: { type: 'String' }, owningId: { type: 'String' } }, |
no outgoing calls
no test coverage detected