Skip to content

Version 2 - Simplified Fluent Interface

Compare
Choose a tag to compare
@adback03 adback03 released this 05 Mar 02:48
· 20 commits to master since this release

This has breaking changes. where clauses are no longer chained together in favor of a single where clause that takes a hash. There is no need to call all after the where.
Example:
V1:
Card.where(supertype='pokemon').where(types='psychic).all()

[NEW] V3
Card.where(supertype='pokemon', types='psychic')