Last items in the names. In the future, we should find out how to go beyond the defaults for queries.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2016-12-10 21:34:21 +00:00 committed by SantiagoBragagnolo
parent 22650f8444
commit d0fd052f26
1 changed files with 3 additions and 3 deletions

View File

@ -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.