You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The validations are failing for me because it thinks that linkContentType can only be an array of string values. Wrong assumption linkContentType can be a string or an array of strings
LinkContentType: ['entryRef', 'entryRefTwo']
or LinkContentType: 'entryRef'
This may go against the official docs but it is allowed and is valid migration using contentfuls DSL.
The text was updated successfully, but these errors were encountered:
This will fix the issue and return a string[] as your tool expects. But this would confuse the crap out of most people. Should support both string and string[] for linkContentType
The validations are failing for me because it thinks that
linkContentType
can only be an array of string values. Wrong assumptionlinkContentType
can be a string or an array of stringsLinkContentType: ['entryRef', 'entryRefTwo']
or
LinkContentType: 'entryRef'
This may go against the official docs but it is allowed and is valid migration using contentfuls DSL.
The text was updated successfully, but these errors were encountered: