diff --git a/src/Zotero/ZoteroLibrary.class.st b/src/Zotero/ZoteroLibrary.class.st index 71df18b..3959281 100644 --- a/src/Zotero/ZoteroLibrary.class.st +++ b/src/Zotero/ZoteroLibrary.class.st @@ -85,14 +85,14 @@ ZoteroLibrary >> subcollectionAsBibTeX: keyString [ ] { #category : #querying } -ZoteroLibrary >> subcollectionItems: keyString [ - "I give all the items for a subcollection, given is alphanumeric key, including notes, attachments" +ZoteroLibrary >> subcollectionLastItems: keyString [ + "I give the last 25 items for a subcollection, given is alphanumeric key, including notes, attachments" ^ NeoJSONReader fromString: (ZnEasy get: (self subcollectionURL: keyString,'/items')) contents. ] { #category : #querying } -ZoteroLibrary >> subcollectionParentItems: keyString [ +ZoteroLibrary >> subcollectionLastParentItems: keyString [ "I give all the items for a subcollection, given is alphanumeric key, excluding notes and attachments" ^ NeoJSONReader fromString: (ZnEasy get: (self subcollectionURL:keyString,'/items?itemType=-note || attachment')) contents.