We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling $api->match()->getByIds([23423423]) (single element) sets content in the response so to get the raw response have to call getContent().
$api->match()->getByIds([23423423])
getContent()
Calling$api->match()->getByIds([23423234, 23423423]) sets a data property in the response so to get the raw response have to call getData();
$api->match()->getByIds([23423234, 23423423])
getData()
Is it possible to always use content or always use data? Is this intentional?
The text was updated successfully, but these errors were encountered:
Unifying the API sounds like a good idea.
Using multiple ids returns a batch result now, whereas using a single id yields a result.
Sorry, something went wrong.
No branches or pull requests
Calling
$api->match()->getByIds([23423423])
(single element) sets content in the response so to get the raw response have to callgetContent()
.Calling
$api->match()->getByIds([23423234, 23423423])
sets a data property in the response so to get the raw response have to callgetData()
;Is it possible to always use content or always use data?
Is this intentional?
The text was updated successfully, but these errors were encountered: