Consider these two node type definitions. Notice the Files
predicate in the first and the HasFiles
predicate in the second. Technically these two definitions are identical. The name of the predicate is the only difference. Aside from human readability, are there any benefits to one style over the other?
Files: [uid] .
type Post {
title
body
Files
created
updated
}
---
HasFiles: [uid] .
type Post {
title
body
HasFiles
created
updated
}