diff --git a/aws-dynamodb-conduit.cabal b/aws-dynamodb-conduit.cabal
--- a/aws-dynamodb-conduit.cabal
+++ b/aws-dynamodb-conduit.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                aws-dynamodb-conduit
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Conduit-based interface for AWS DynamoDB
 -- description:         
 homepage:            https://github.com/srijs/haskell-aws-dynamodb-query
diff --git a/src/Aws/DynamoDb/Commands/Query/Conduit.hs b/src/Aws/DynamoDb/Commands/Query/Conduit.hs
--- a/src/Aws/DynamoDb/Commands/Query/Conduit.hs
+++ b/src/Aws/DynamoDb/Commands/Query/Conduit.hs
@@ -67,6 +67,7 @@
     key "ConsumedCapacity" = setConsumed <$> Just <$> parse
     key "LastKey"          = setLastKey  <$> parseMaybe parseAttributeJson <$> pvalue
     key "Items"            = mempty <$ (parray . const $ parse >>= lift . tell . maybeToList)
+    key _                  = return mempty
     setCount    c = mempty { incompleteCount    = Last c }
     setScanned  c = mempty { incompleteScanned  = Last c }
     setConsumed c = mempty { incompleteConsumed = Last c }
