PokemonTCG/pokemon-tcg-sdk-php

Card not found with identifier: ex10-?

Closed this issue · 1 comments

this does not find this card

$card = Pokemon::Card($options)->find('ex10-?');

below does find the card. is the ex10-? incorrect for this?
$card = Pokemon::Card($options)->where(['name' => 'Unown'])->where(['number' => '?'])->all();

The q or query parameter will be supported in v2, which will support wildcard queries. See #9.