QUERY_BY_PERMALINK(permalink)
Form.new(permalink).submissions.query_by_permalink(permalink)
Queries for submissions matching a permalink String
. Returns a Promise
resolving with a SubmissionData
object.
Return Value Notes
The query
methods return SubmissionData
objects because they are optimized for large numbers of submissions. Normal Submission
objects have overhead, so fewer could be loaded on average computers.
We recommend using the SubmissionData
methods outlined in the documentation for reading or writing submission data, but if the user needs access to the record you can turn it into a Submission
with the submission
method. The method returns a promise which loads the submission.