Julius Park
Julius Park
Hi, Have you tried building DGL from source? ``` brew install cmake hdf5 swig git clone --recurse-submodules https://github.com/dmlc/dgl.git || true cd dgl mkdir build cd build export MACOSX_DEPLOYMENT_TARGET=10.14 cmake -DUSE_OPENMP=off...
Hi! Thank you for raising this issue. This is unfortunately because Schemas do not support the "dot" notation used in MongoDB projections. Unfortunately, at this time the best workaround seems...
An example aggregation pipeline you can use would be: ``` db.collection.aggregate([ { "$project": { "Name": "$value.prop.Name", "Start": "$value.prop.Start" } }, ]) ``` Which would yield something that looks like this:...
@Sondos-Omar here is a more detailed example: ``` from pymongo import MongoClient from pymongoarrow.api import Schema, find_pandas_all from pymongoarrow.types import ( ObjectIdType, ) from datetime import datetime from bson import...
Hi! @Sondos-Omar We have updated our documentation in this PR to show more examples for using nested data: https://github.com/mongodb-labs/mongo-arrow/pull/130